Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sikt/sds-form

Package Overview
Dependencies
Maintainers
3
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sikt/sds-form

## Consume

  • 2.1.0
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

@sikt/sds-form

Consume

npm i -s @sikt/sds-form

React

Fieldset
import { Fieldset } from "@sikt/sds-form";
import "@sikt/sds-form/dist/index.css";

<Fieldset legend="Example Fieldset">
  <Radio>
</Fieldset>

The Fieldset component is useful when grouping several checkboxes, but can also be used with other input elements. If the elements inside are Radio components, please use RadioFieldset instead. It contains additional support for radio buttons.

FormField
import { FormField } from "@sikt/sds-form";
import "@sikt/sds-form/dist/index.css";

<FormField label="Example input" helpText="This is an example" htmlFor="example-input">
  <input type="text" id="example-input">
</FormField>

The FormField component can be used to implement input elements needing a label and help/error text. It is used internally for components like Input and Select, and contains logic for handling error state by switching help text with error text. This component is recommended to use when developing custom input components to be used together with the existing ones.

This package also exports the Label and HelpText components, which are used by FormField. You will most likely not need to use these, but they are available. Prefer to use FormField instead.

Stylesheets & custom markup

Import stylesheet:

@import url("@sikt/sds-form");

FAQs

Package last updated on 12 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc